home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
041-050
/
amok44
/
m2ced
/
txt
/
msg.def
< prev
next >
Wrap
Text File
|
1993-11-04
|
941b
|
34 lines
(**********************************************************************
:Program. Msg.def
:Contents. Display any messages from M2CED
:Author. Steffen Reith
:Address. Hessenstr. 64, D-8700 Würzburg
:Copyright. Shareware
:Language. Modula-2
:Translator. M2Amiga A+L V3.2d
:Imports. None
:History. V1.0 15.June 1990
**********************************************************************)
DEFINITION MODULE Msg;
PROCEDURE Request(Text:ARRAY OF CHAR);
(*:Input. A normal string
:Semantic. Display a Requester ( Uses req.library )
*)
PROCEDURE EndRequest(Text:ARRAY OF CHAR);
(*:Input. A normal string
:Semantic. Display a Requester, perform DisplayBeep and terminate Prg
*)
PROCEDURE TitleMsg(Text:ARRAY OF CHAR);
(*:Input. A normal string
:Semantic. Shows the Text at the titlebar of CED
:Semantic. If CED isn't activ it will be the same as Request
*)
END Msg.